/*FOOTER STYLES*/
footer {
	background-color: #333; /*sets the background of the footer to match nav*/
	text-align: center; /*centers the text in the footer*/
	font-variant: small-caps; /*writes the footer in small caps*/
	padding: 1%;/*adds a 1% border of space within the dark green around the text*/
	bottom: 0; /*defines the footer position as the bottom of the screen*/
	color: white;
	position: sticky;
	}
	
footer > a { /*selects all the links IN THE FOOTER*/
	color: inherit; /*sets the color of links in the footer to the same color as surrounding text*/
	}
	
.site-contents { /*helps with sticky footer*/
  flex: 1;
}

/*
@media screen and (max-width: 600px){
  body{
   margin-bottom: 0;
  }
  footer {
    position: sticky;
	left: 0;
    bottom: 0;
    height: 60px;
    width: 100%;
  }
  
}

@media screen and (min-width: 600px){
	footer {
		position:sticky;
	}
}*/